home *** CD-ROM | disk | FTP | other *** search
Wrap
VERSION 5.00 Object = "{48E59290-9880-11CF-9754-00AA00C00908}#1.0#0"; "MSINET.OCX" Begin VB.Form Form1 BorderStyle = 3 'Fixed Dialog Caption = "hitter by anti" ClientHeight = 855 ClientLeft = 45 ClientTop = 330 ClientWidth = 3975 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 855 ScaleWidth = 3975 ShowInTaskbar = 0 'False StartUpPosition = 3 'Windows Default Begin VB.TextBox Text3 Height = 285 Left = 3120 TabIndex = 5 Text = "0" Top = 480 Visible = 0 'False Width = 735 End Begin VB.TextBox Text2 Height = 285 Left = 2280 TabIndex = 4 Text = "0" Top = 480 Width = 735 End Begin VB.CommandButton Command1 Caption = "begin" BeginProperty Font Name = "Arial" Size = 8.25 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 255 Left = 3120 TabIndex = 1 Top = 120 Width = 735 End Begin VB.TextBox Text1 BeginProperty Font Name = "Arial" Size = 8.25 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 285 Left = 120 TabIndex = 0 Text = "http://www.teamcore.net" Top = 480 Width = 2055 End Begin InetCtlsObjects.Inet Inet1 Left = -360 Top = -240 _ExtentX = 1005 _ExtentY = 1005 End Begin VB.Line Line8 X1 = 3960 X2 = 3960 Y1 = 0 Y2 = 2160 End Begin VB.Label Label2 BackStyle = 0 'Transparent Caption = "amount" Height = 255 Left = 2400 TabIndex = 3 Top = 135 Width = 615 End Begin VB.Line Line12 BorderColor = &H00FFFFFF& X1 = 3000 X2 = 3000 Y1 = 360 Y2 = 120 End Begin VB.Line Line11 X1 = 2280 X2 = 3000 Y1 = 120 Y2 = 120 End Begin VB.Line Line10 BorderColor = &H00FFFFFF& X1 = 3000 X2 = 2280 Y1 = 360 Y2 = 360 End Begin VB.Line Line9 X1 = 2280 X2 = 2280 Y1 = 120 Y2 = 360 End Begin VB.Label Label1 BackStyle = 0 'Transparent Caption = "website to hit" BeginProperty Font Name = "Arial" Size = 8.25 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 255 Left = 240 TabIndex = 2 Top = 135 Width = 1935 End Begin VB.Line Line7 BorderColor = &H00FFFFFF& X1 = 2160 X2 = 2160 Y1 = 360 Y2 = 120 End Begin VB.Line Line6 X1 = 120 X2 = 2160 Y1 = 120 Y2 = 120 End Begin VB.Line Line5 BorderColor = &H00FFFFFF& X1 = 2160 X2 = 120 Y1 = 360 Y2 = 360 End Begin VB.Line Line4 X1 = 120 X2 = 120 Y1 = 120 Y2 = 360 End Begin VB.Line Line3 X1 = 0 X2 = 4200 Y1 = 840 Y2 = 840 End Begin VB.Line Line2 BorderColor = &H00FFFFFF& X1 = 4200 X2 = 0 Y1 = 0 Y2 = 0 End Begin VB.Line Line1 BorderColor = &H00FFFFFF& X1 = 0 X2 = 0 Y1 = 0 Y2 = 2160 End Attribute VB_Name = "Form1" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Stopper& Private Sub Command1_Click() On Error GoTo ErrorHandler If Command1.Caption = "begin" Then If IsNumeric(Text2.Text) = False Then MsgBox "please enter a valid amount!", vbExclamation, "hitter by anti": Text2.Text = "0": Exit Sub Command1.Caption = "stop" Text3.Visible = True For a = 1 To Text2.Text If Stopper& = 1 Then Exit Sub Do While Inet1.StillExecuting DoEvents Loop Inet1.Execute Text1.Text, "GET " & Text1.Text Text3.Text = Text3.Text + 1 Next a Stopper& = 1 Command1.Caption = "begin" Text3.Visible = False End If Exit Sub ErrorHandler: MsgBox "an error has occured, possibly because the website may not exist. please try another website, or just try again.", vbInformation, "hitter by anti" Exit Sub End Sub